Closed
Bug 1340183
Opened 8 years ago
Closed 7 years ago
[clang-format] Header sorting not always in alphabetical order
Categories
(Developer Infrastructure :: Lint and Formatting, defect)
Developer Infrastructure
Lint and Formatting
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jya, Unassigned)
References
Details
No description provided.
Reporter | ||
Comment 1•8 years ago
|
||
example:
#include "DecryptJob.h"
#include "GMPCDMProxy.h"
#include "GMPCDMCallbackProxy.h"
is sorted as:
#include "GMPCDMProxy.h"
#include "DecryptJob.h"
#include "GMPCDMCallbackProxy.h"
this is incorrect.
it should be:
#include "DecryptJob.h"
#include "GMPCDMProxy.h"
#include "GMPCDMCallbackProxy.h"
as D is before G
Updated•7 years ago
|
Product: Core → Firefox Build System
Comment 2•7 years ago
|
||
I think this is now fixed.
(tested with clang-format-7)
Blocks: clang-format
Status: NEW → RESOLVED
Closed: 7 years ago
Component: Source Code Analysis → Lint and Formatting
Resolution: --- → FIXED
Updated•3 years ago
|
Product: Firefox Build System → Developer Infrastructure
You need to log in
before you can comment on or make changes to this bug.
Description
•